home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / PACKAGES / AWK320.ZIP / WC.AWK < prev    next >
Text File  |  1990-02-08  |  113b  |  4 lines

  1. # word count -- prints lines, words, characters
  2.  
  3. { nf += NF; nc += length($0) + 2 }; END { print NR, nf, nc }
  4.